home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00121_sound handling.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.0 KB  |  164 lines

  1. -- SOUND handlers
  2. -- all effect sounds are played in channel 1
  3.  
  4. -- this global is available to all the handlers below it
  5. global gSoundList
  6.  
  7. ------------------------------------------------------------------------------------
  8. -- this intializes the global response sound list
  9. -- pass it 2 lists of sounds, good and bad, and it arranges them into a 
  10. -- property list
  11. --
  12. -- the call should look something like this:
  13. -- initSoundList(["good1.aiff", "good2.aiff", "good3.aiff"], ["bad.aiff", "verybad.aiff"])
  14. --
  15. -- since the sounds are stored internally in a director shared cast, the names have to be
  16. -- the full names of the sound cast members.
  17. on initSoundList
  18.   
  19.   set goodSoundNames = ["good,1","good,2","good,3","good,4","good,5","good,6","good,7","good,8","good,9","good,10","good,11","good,12","good,13","good,14","good,15","good,16","good,17","good,18","good,19","good,20"]
  20.   
  21.   set badSoundNames = ["try again,boy", "try again,girl"]
  22.   
  23.   set goodNoiseNames = ["goodNoise,1", "goodNoise,3", "goodNoise,4", "goodNoise,5", "goodNoise,6", "goodNoise,7"]
  24.   
  25.   set badNoiseNames = ["badNoise,1", "badNoise,2", "badNoise,3", "badNoise,4", "badNoise,5", "badNoise,6", "badNoise,7", "badNoise,8"]
  26.   
  27.   
  28.   set gSoundList = [:]
  29.   
  30.   -- add the good sound cast numbers
  31.   set tempList = []
  32.   repeat with x in goodSoundNames
  33.     add(tempList, the memberNum of member x)
  34.   end repeat
  35.   
  36.   -- now add the good tag and the list
  37.   addProp(gSoundList, #goodSounds, tempList)
  38.   
  39.   
  40.   -- now do the same for the bad sounds
  41.   set tempList = []
  42.   repeat with x in badSoundNames
  43.     add(tempList, the memberNum of member x)
  44.   end repeat
  45.   
  46.   -- now add the good tag and the list
  47.   addProp(gSoundList, #badSounds, tempList)
  48.   
  49.   
  50.   -- now do the same for the bad sounds
  51.   set tempList = []
  52.   repeat with x in goodNoiseNames
  53.     add(tempList, the memberNum of member x)
  54.   end repeat
  55.   
  56.   -- now add the good tag and the list
  57.   addProp(gSoundList, #goodNoises, tempList)
  58.   
  59.   -- now do the same for the bad sounds
  60.   set tempList = []
  61.   repeat with x in badNoiseNames
  62.     add(tempList, the memberNum of member x)
  63.   end repeat
  64.   
  65.   -- now add the good tag and the list
  66.   addProp(gSoundList, #badNoises, tempList)
  67.   
  68. end
  69.  
  70. ------------------------------------------------------------------------------------
  71. -- this will play a good or bad sound from the global list
  72. --
  73. -- It takes several params:
  74. -- sndType = good or bad, pass a 1 for good, and a 0 for bad
  75. -- loopTillDone = shuld we immediately go on, or should we sit in this handler until
  76. --                the sound in channel 1 is finished? pass a 1 for wait for it, and a 0 for go on
  77. -- directRef = if you want to refer to one of the sounds in particular, for instance, if I 
  78. --             always wanted to play "good3.aiff", I would call the function like this:
  79. --             playResponseSound(1, 1, 3) and this would play the 3rd "good" sound in 
  80. --             the global list.
  81.  
  82. on playResponseSound sndType, loopTillDone, directRef
  83.   global gUI
  84.   
  85.   -- first get the correct list from the global list holder
  86.   set thisList = []
  87.   
  88.   -- if we are looking for a positive sound
  89.   if sndType then
  90.     set thisList = value(the goodSounds of gSoundList)
  91.     set noiseList = value (the goodNoises of gSoundList)
  92.   else
  93.     set thisList = value(the badSounds of gSoundList)
  94.     set noiseList = value (the badNoises of gSoundList)
  95.   end if
  96.   
  97.   -- now we need to pick a sound
  98.   
  99.   -- get a random noise:
  100.   set thisNoise = getAt (noiseList, random (count (noiseList)))
  101.   
  102.   
  103.   -- we are not asking for a specific sound
  104.   if voidP(directRef) then
  105.     
  106.     -- we should get a random sound
  107.     set thisSound = getAt(thisList, random(count(thisList)))
  108.     
  109.   else
  110.     -- if the directRef sound is not there, then do the random thing
  111.     if directRef > count(thisList) or directRef < 1 then
  112.       put "doing random soundage because that sound is unavailable..!"
  113.       set thisSound = getAt(thisList, random(count(thisList)))
  114.     else    
  115.       set thisSound = getAt(thisList, directRef)
  116.     end if
  117.     
  118.   end if
  119.   
  120.   -- now we should check to make sure we have a valid sound cast number in thisSound
  121.   if thisSound > 0 then
  122.     -- we should play the sound
  123.     puppetSound 1, member thisNoise of castLib "UI.cst"
  124.     updateStage
  125.     
  126.     -- wait while it plays
  127.     waitFXSound(#lock)
  128.     
  129.     -- should it wait?
  130.     if loopTillDone then
  131.       puppetSound 1, member thisSound of castLib "UI.cst"
  132.       updateStage
  133.       
  134.       -- wait while it plays
  135.       waitFXSound()
  136.     else
  137.       -- just fire it off
  138.       puppetSound 1, member thisSound of castLib "UI.cst"
  139.       updateStage
  140.     end if
  141.     
  142.     -- eat the mouse clicks
  143.     clearEvents(gUI)
  144.     
  145.     -- we successfully played the sound
  146.     return 1
  147.     
  148.   else
  149.     
  150.     -- we bailed out for some reason
  151.     return 0
  152.   end if
  153.   
  154. end
  155.  
  156. ------------------------------------------------------------------------------------
  157. -- wait for the sound in the FX channel to stop
  158. on waitFXSound cmd
  159.   repeat while soundBusy(1)
  160.     updateStage
  161.     if the mouseDown and not cmd = #lock then exit repeat
  162.   end repeat
  163. end
  164.